home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / vbasic / subvbx.exe / MAINFRM.H < prev    next >
C/C++ Source or Header  |  1993-04-29  |  825b  |  37 lines

  1. // mainfrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CMainFrame : public CFrameWnd
  6. {
  7. protected: // create from serialization only
  8.     CMainFrame();
  9.     DECLARE_DYNCREATE(CMainFrame)
  10.  
  11. // Attributes
  12. public:
  13.  
  14. // Operations
  15. public:
  16.  
  17. // Implementation
  18. public:
  19.     virtual ~CMainFrame();
  20. #ifdef _DEBUG
  21.     virtual    void AssertValid() const;
  22.     virtual    void Dump(CDumpContext& dc) const;
  23. #endif
  24.  
  25.  
  26.  
  27. // Generated message map functions
  28. protected:
  29.     //{{AFX_MSG(CMainFrame)
  30.         // NOTE - the ClassWizard will add and remove member functions here.
  31.         //    DO NOT EDIT what you see in these blocks of generated code !
  32.     //}}AFX_MSG
  33.     DECLARE_MESSAGE_MAP()
  34. };
  35.  
  36. /////////////////////////////////////////////////////////////////////////////
  37.